def replace_contents(g):
    g[0]  =  17
    g[1]  =  28
    g[2]  =  45
    print("g  =",  g)
    
f

replace_contents(f)

f


